home *** CD-ROM | disk | FTP | other *** search
- /* timer.h--support for timer.c */
- /*lint -save -e537 We are protected by wrappers against multi-include */
- /* $Header: Work:src/xprkermit/RCS/timer.h,v 1.2 91/11/09 06:59:38 swalton Exp Locker: swalton $ */
-
- #ifndef TIMER_H
- #define TIMER_H
-
- #include <exec/types.h>
- #include <devices/timer.h>
-
- void DeleteTimer(struct timerequest *);
- struct timerequest *CreateTimer(ULONG);
- void WaitForTimer(struct timerequest *, struct timeval *);
- LONG MyDelay(struct timeval *, LONG);
-
- #pragma regcall(DeleteTimer(a0))
- #pragma regcall(CreateTimer(d0))
- #pragma regcall(WaitForTimer(a0,a1))
- #pragma regcall(MyDelay(a0,d0))
-
- #endif /* TIMER_H */
-
- /*lint -restore */
-